home *** CD-ROM | disk | FTP | other *** search
/ Chip: Special XP & Vista / Chip Spesial XP & Vista.iso / 1_Audio_Video / MediaCell_Mobile_Video_Converter / MediaCellMobileVideoConverterSetupFull.exe / enc.bat < prev    next >
DOS Batch File  |  2006-10-05  |  1KB  |  55 lines

  1. @echo off
  2. REM 
  3. REM  Command-line call to MediaCEll
  4. REM 
  5. set ifile=%1
  6. shift
  7. set vcodec=%1
  8. shift
  9. set mapvideo=%1
  10. shift
  11. set mapaudio=%1
  12. shift
  13. set volume=%1
  14. shift
  15. set title=%1
  16. shift
  17. set stamp=%1
  18. shift
  19. set cropL=%1
  20. shift
  21. set cropR=%1
  22. shift
  23. set cropT=%1
  24. shift
  25. set cropB=%1
  26. shift
  27. if "%1"=="0" goto NO_START
  28. set recSt=-ss %1
  29. goto DURATION
  30. :NO_START
  31. set recSt=
  32. :DURATION
  33. shift
  34. if "%1"=="@" goto NO_DUR
  35. set recDur=-vframes %1
  36. goto DUR_DONE
  37. :NO_DUR
  38. set recDur=
  39. :DUR_DONE
  40. shift
  41.  
  42. REM Apply Proper DIVX settings if necessary
  43. if %vcodec%==divx goto DIVX
  44. if %vcodec%==DIVX goto DIVX
  45. goto ENCODE
  46. :DIVX
  47. set vcodec=mpeg4 -vtag DIVX
  48. :ENCODE
  49.  
  50. set cmdLine=.\Engine\MediaCellEngine.exe -i %ifile% -f %8 -s %1 -vcodec %vcodec% -vol %volume% -deinterlace -cropleft %cropL% -cropright %cropR% -croptop %cropT% -cropbottom %cropB% -r %2 -b %3 -acodec %4 -ac %5 -ar %6 -async 100 -title %title% -timestamp %stamp% -bitexact -y %9
  51. %cmdLine% > MediaCellEngine.log 2>&1
  52.  
  53. :END
  54. exit
  55.